From 74dcd0ce6f4fadce8093e54f0fc1a45426577e13 Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Wed, 21 Dec 2016 16:47:19 +0100 Subject: [PATCH] x86/HVM: add missing NULL check before using VMFUNC hook This is CVE-2016-10025 / XSA-203. Signed-off-by: Jan Beulich Reviewed-by: Andrew Cooper --- xen/arch/x86/hvm/emulate.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xen/arch/x86/hvm/emulate.c b/xen/arch/x86/hvm/emulate.c index 9da7336ce6..ecc107bc0a 100644 --- a/xen/arch/x86/hvm/emulate.c +++ b/xen/arch/x86/hvm/emulate.c @@ -1650,6 +1650,8 @@ static int hvmemul_vmfunc( { int rc; + if ( !hvm_funcs.altp2m_vcpu_emulate_vmfunc ) + return X86EMUL_UNHANDLEABLE; rc = hvm_funcs.altp2m_vcpu_emulate_vmfunc(ctxt->regs); if ( rc != X86EMUL_OKAY ) x86_emul_hw_exception(TRAP_invalid_op, X86_EVENT_NO_EC, ctxt); -- 2.30.2